home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / CD CHIP.ISO / WebServ / folkweb / REG.H_ < prev    next >
Encoding:
Text File  |  1995-08-25  |  1.1 KB  |  49 lines

  1. // reg.h : main header file for the REG application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CRegApp:
  12. // See reg.cpp for the implementation of this class
  13. //
  14.  
  15. class CRegDoc;
  16. class CMainFrame;
  17. class CRegView;
  18.   
  19. class CRegApp : public CWinApp
  20. {
  21. public:
  22.     CRegApp();
  23.  
  24.     CRegDoc *m_pDoc; 
  25.     CMainFrame *m_pFrame;
  26.     CRegView *m_pView;
  27.     CStringArray m_saParams;
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CRegApp)
  32.     public:
  33.     virtual BOOL InitInstance();
  34.     virtual int ExitInstance();
  35.     //}}AFX_VIRTUAL
  36.     void ParseCmdLine(CString& sIniFile, CString& sContentFile, CString& sOutputFile);
  37.     void ParseIniFile(CString sIniFile);
  38.     void CreateResponse(CString sOutputFile, CString sIniFile);
  39.  
  40. // Implementation
  41.  
  42.     //{{AFX_MSG(CRegApp)
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.